From 31ff04b5995fdcfd644fd8634b5f0560da799e3d Mon Sep 17 00:00:00 2001 From: Andreas Schwab Date: Sat, 8 Mar 2008 15:55:51 +0000 Subject: [PATCH] (struct Lisp_Process): Declare bit field as unsigned. --- src/ChangeLog | 4 ++++ src/process.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 26362e6b719..a4cb8a78d3a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2008-03-08 Andreas Schwab + + * process.h (struct Lisp_Process): Declare bit field as unsigned. + 2008-03-07 Stefan Monnier * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum diff --git a/src/process.h b/src/process.h index 7a212245724..3be8686b830 100644 --- a/src/process.h +++ b/src/process.h @@ -123,7 +123,7 @@ struct Lisp_Process This is to avoid consing in a signal handler. The `raw_status_new' flag indicates that `raw_status' contains a new status that still needs to be synced to `status'. */ - int raw_status_new : 1; + unsigned int raw_status_new : 1; int raw_status; }; -- 2.30.2